home *** CD-ROM | disk | FTP | other *** search
- *** 1.11 1992/04/19 16:42:24
- --- Changelo 1992/06/03 15:52:03
- ***************
- *** 141,143 ****
- --- 141,156 ----
- GEMDOS level).
-
- -------------------------- Patchlevel 12 ---------------------------------
- +
- + curses.h:: ++jrb
- + #define _putchar _fputchar (defined in putchar.c) instead of
- + the old fputc() which was wrong
- +
- + curses.h:: ++jrb
- + undo the above change.
- +
- + xconsole.c:: scott
- + We were doning a dev=LOOKUP(handle) in console_write_byte, than again
- + in flush_key_buff()
- +
- + -------------------------- Patchlevel 13 ---------------------------------
- *** 1.10 1992/04/19 16:42:24
- --- PatchLev.h 1992/06/03 15:52:04
- ***************
- *** 1,5 ****
- /*
- ! * PathLevel: 12
- *
- * the Patch Level above is to identify the version
- * of the all the files in this directory. given the above
- --- 1,5 ----
- /*
- ! * PathLevel: 13
- *
- * the Patch Level above is to identify the version
- * of the all the files in this directory. given the above
- --- 10,13 ----
- *** 1.5 1991/09/24 17:24:27
- --- curses.h 1992/06/03 15:52:06
- ***************
- *** 37,52 ****
-
- #include <termcap.h>
-
- ! #if defined(__cplusplus)
- extern "C" {
- #endif
-
- -
- # define bool char
- # define reg register
-
- # define TRUE (1)
- # define FALSE (0)
- # define ERR (0)
- # define OK (1)
-
- --- 37,53 ----
-
- #include <termcap.h>
-
- ! #ifdef __cplusplus
- extern "C" {
- #endif
-
- # define bool char
- # define reg register
-
- + #ifndef TRUE
- # define TRUE (1)
- # define FALSE (0)
- + #endif
- # define ERR (0)
- # define OK (1)
-
- ***************
- *** 74,80 ****
- */
-
- #ifdef HZ
- ! # undef HZ /* in case they included sys/param.h */
- #endif
-
- extern bool AM, BS, CA, DA, DB, EO, HC, HZ, IN, MI, MS, NC, NS, OS, UL,
- --- 75,81 ----
- */
-
- #ifdef HZ
- ! #undef HZ /* in case they included sys/param.h */
- #endif
-
- extern bool AM, BS, CA, DA, DB, EO, HC, HZ, IN, MI, MS, NC, NS, OS, UL,
- ***************
- *** 287,294 ****
- __EXTERN char *unctrl __PROTO((int c));
- #endif
-
- ! #if defined(__cplusplus)
- }
- #endif
-
- ! # endif
- --- 288,295 ----
- __EXTERN char *unctrl __PROTO((int c));
- #endif
-
- ! #ifdef __cplusplus
- }
- #endif
-
- ! #endif
- *** 1.2 1991/09/24 17:24:27
- --- termcap.h 1992/06/03 15:52:11
- ***************
- *** 5,11 ****
- # include <compiler.h>
- #endif
-
- ! #if defined(__cplusplus)
- extern "C" {
- #endif
-
- --- 5,11 ----
- # include <compiler.h>
- #endif
-
- ! #ifdef __cplusplus
- extern "C" {
- #endif
-
- ***************
- *** 27,34 ****
- /* tputs.c */
- __EXTERN void tputs __PROTO((char *cp, int affcnt, int (*outc)(int )));
-
- ! #if defined(__cplusplus)
- ! }
- #endif
-
- #endif /* _TERMCAP_H */
- --- 27,34 ----
- /* tputs.c */
- __EXTERN void tputs __PROTO((char *cp, int affcnt, int (*outc)(int )));
-
- ! #ifdef __cplusplus
- ! extern "C" {
- #endif
-
- #endif /* _TERMCAP_H */
- *** 1.8 1992/04/19 16:42:24
- --- xconsole.c 1992/06/03 15:52:14
- ***************
- *** 222,234 ****
- int n;
- {
- char ch;
- - short dev;
-
- - dev = LOOKUP(handle);
- -
- if (__check_signals)
- ! flush_key_buff(dev);
- ! /* raw_out(dev, n); */
- ch = n;
- (void)Fwrite(handle, 1L, &ch);
- }
- --- 222,230 ----
- int n;
- {
- char ch;
-
- if (__check_signals)
- ! flush_key_buff(handle);
- ch = n;
- (void)Fwrite(handle, 1L, &ch);
- }
-